WinUI | ComponentOne
C1.WinUI.Core Assembly / C1.WinUI.Core Namespace / DelegateConverter Class / Create Method / Create(Func<Object,Type,Object,String,Object>) Method
The converter function. (value, type, parameter, culture)
Example
In This Topic
    Create(Func<Object,Type,Object,String,Object>) Method
    In This Topic
    Creates the specified converter function.
    Syntax

    Parameters

    converterFunction
    The converter function. (value, type, parameter, culture)

    Return Value

    The converted value
    Example
    var converter = DelegateConverter.Create((value, type, parameter, culture)=>
    {
        return; //Put the converter code here
    });
    See Also